home *** CD-ROM | disk | FTP | other *** search
/ Atari Forever 4 / Atari Forever 4.zip / Atari Forever 4.iso / PD_THEMA / EDITOREN / 7UP_PD / FEXIST.C < prev    next >
C/C++ Source or Header  |  1998-03-14  |  386b  |  16 lines

  1. /*****************************************************************************
  2. *
  3. *                                              7UP
  4. *                                        Modul: FEXIST.C
  5. *                                     (c) by TheoSoft '94
  6. *
  7. *****************************************************************************/
  8. #include <stdio.h>
  9. #include <ext.h>
  10.  
  11. int fexist(char *pathname)
  12. {
  13.     struct ffblk fileRec;
  14.     return(!findfirst(pathname,&fileRec,0));
  15. }
  16.